home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
adjustment.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
1KB
|
42 lines
/* RCSVER $Id: adjustment.sql,v 1.2 1999-03-19 11:24:05-06 evan CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: adjustment
* Date: 1/10/1999
* memo: Evan M. Ghormley
* Description: Create the adjustment table.
* Changes:
************************************************************************* */
CREATE TABLE adjustment
(
cashbox_total_seq_num NUMBER(38),
batch_total_seq_num NUMBER(38),
acctday_total_seq_num NUMBER(38),
insert_date DATE,
user_id NUMBER,
audit_id VARCHAR2(15),
description VARCHAR2(300),
coin_adjust NUMBER(20,2),
bill_adjust NUMBER(20,2),
total_adjust NUMBER(20,2)
);
/* *********************************************************
* Relationships
* total_table_id m:1 CashboxTotals
* total_table_id m:1 BatchTotals
* total_table_id m:1 AcctDateTotals
* id_counter
* insert_date
* user_id m:1 Users.user_id
* audit_id
* description
* coin_adjust
* bill_adjust
* total_adjust
******************************************************** */